home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / daemons / init / sysvinit.000 / sysvinit / sysvinit-2.64 / utmpdump.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-23  |  1.4 KB  |  62 lines

  1. /*
  2.  * dump        Simple program to dump UTMP and WTMP files in
  3.  *        raw format, so they can be examined.
  4.  *
  5.  * Author:    Miquel van Smoorenburg, <miquels@cistron.nl>
  6.  * Date:    23-Jun-1996
  7.  * Version:    1.1
  8.  *
  9.  *        This file is part of the sysvinit suite,
  10.  *        Copyright 1991-1996 Miquel van Smoorenburg.
  11.  *
  12.  *        This program is free software; you can redistribute it and/or
  13.  *        modify it under the terms of the GNU General Public License
  14.  *        as published by the Free Software Foundation; either version
  15.  *        2 of the License, or (at your option) any later version.
  16.  */
  17.  
  18. #include <stdio.h>
  19. #include <utmp.h>
  20. #include <time.h>
  21.  
  22. void dump(fp)
  23. FILE *fp;
  24. {
  25.   struct utmp ut;
  26.   int f;
  27.  
  28.   while (fread(&ut, sizeof(struct utmp), 1, fp) == 1) {
  29.     for(f = 0; f < 12; f++) if (ut.ut_line[f] == ' ') ut.ut_line[f] = '_';
  30.     for(f = 0; f <  8; f++) if (ut.ut_name[f] == ' ') ut.ut_name[f] = '_';
  31.     printf("[%d] [%05d] [%-4.4s] [%-8.8s] [%-12.12s] [%-15.15s]\n",
  32.         ut.ut_type, ut.ut_pid, ut.ut_id, ut.ut_user,
  33.         ut.ut_line, 4 + ctime(&ut.ut_time));
  34.   }
  35. }
  36.  
  37. int main(argc, argv)
  38. int argc;
  39. char **argv;
  40. {
  41.   int f;
  42.   FILE *fp;
  43.  
  44.   if (argc < 2) {
  45.     argc = 2;
  46.     argv[1] = UTMP_FILE;
  47.   }
  48.  
  49.   for(f = 1; f < argc; f++) {
  50.     if (strcmp(argv[f], "-") == 0) {
  51.         printf("Utmp dump of stdin\n");
  52.         dump(stdin);
  53.     } else if ((fp = fopen(argv[f], "r")) != NULL) {
  54.         printf("Utmp dump of %s\n", argv[f]);
  55.         dump(fp);
  56.         fclose(fp);
  57.     } else
  58.         perror(argv[f]);
  59.   }
  60.   return(0);
  61. }
  62.